home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Xconq 7.1.0 / src / xconq-7.1.0 / x11 / xutil.h < prev   
Encoding:
C/C++ Source or Header  |  1996-07-07  |  1.4 KB  |  28 lines  |  [TEXT/R*ch]

  1. /* Definitions used in X utility programs.
  2.    Copyright (C) 1993, 1994, 1995 Stanley T. Shebs.
  3.  
  4. Xconq is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.  See the file COPYING.  */
  8.  
  9. extern void close_displays PARAMS ((void));
  10. extern int write_entire_game_state PARAMS ((char *fname));
  11. extern void low_init_error PARAMS ((char *str));
  12. extern void low_init_warning PARAMS ((char *str));
  13. extern void low_run_error PARAMS ((char *str));
  14. extern void low_run_warning PARAMS ((char *str));
  15. extern int keyword_code PARAMS ((char *str));
  16. extern Image *read_xbm_file PARAMS ((char *filename, ImageFamily *imf,
  17.                     readimf_hook hook));
  18. extern Image *read_xpm_file PARAMS ((char *filename, ImageFamily *imf,
  19.                     readimf_hook hook));
  20. extern void parse_xpm_colors PARAMS ((char *name, int *r, int *g, int *b)); 
  21. extern void write_xpm_file PARAMS ((FILE *fp, char *name, Image *img));
  22. extern void write_x11_bitmaps PARAMS ((ImageFamily *imf, int mkfiles));
  23. extern void write_xbm_file PARAMS ((FILE *fp, char *name, int cols, int rows,
  24.                    char *data)); 
  25. extern char *find_imf_name PARAMS ((char *rawname));
  26. extern int read_any_file PARAMS ((char *filename, readimf_hook hook));
  27. extern void reverse_rawdata PARAMS ((ImageFamily *imf));
  28.